home *** CD-ROM | disk | FTP | other *** search
- on(press){
- _root.SFX.gotoAndPlay("Click");
- var match = false;
- var i = 0;
- while(i < _root.cheatCodes.length)
- {
- var theCode = _root.cheatCodes[i];
- if(_root.codeInput == theCode)
- {
- match = true;
- break;
- }
- i++;
- }
- if(match == true)
- {
- _root.funcHITBOX("Valid_cheat_code_" + _root.codeInput);
- gotoAndStop("Valid");
- play();
- }
- else
- {
- gotoAndStop("Invalid");
- play();
- }
- }
-